home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 September & October / Amiga-CD 1996 #9-10.iso / demos / storm-c / stormc / include / linkerfunc.h < prev    next >
C/C++ Source or Header  |  1996-06-13  |  428b  |  27 lines

  1. #ifndef _INCLUDE_LINKERFUNC_H
  2. #define _INCLUDE_LINKERFUNC_H
  3.  
  4. /*
  5. **  $VER: linkerfunc.h 1.01 (18.1.96)
  6. **  StormC Release 1.1
  7. **
  8. **  '(C) Copyright 1995/96 Haage & Partner Computer GmbH'
  9. **     All Rights Reserved
  10. */
  11.  
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15.  
  16. void InitModules(void);
  17. void CleanupModules(void);
  18.  
  19. void GetBaseReg(void);
  20. void geta4(void); // only for compatibility, use GetBaseReg()
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif
  27.